home *** CD-ROM | disk | FTP | other *** search
/ Supercompiler 1997 / SUPERCOMPILER97.iso / Delphi 3.0 / DATA.Z / EMPEDIT.DPR < prev    next >
Encoding:
Text File  |  1997-01-30  |  212 b   |  14 lines

  1. program EmpEdit;
  2.  
  3. uses
  4.   Forms,
  5.   EmpForm in 'EmpForm.pas' {EmployeeForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TEmployeeForm, EmployeeForm);
  12.   Application.Run;
  13. end.
  14.